home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / Development / Example_Code_v37 / AmigaMail / AMCX / smakefile < prev   
Encoding:
Makefile  |  1996-03-17  |  194 b   |  13 lines

  1. CFLAGS = nostackcheck structureequivalence ignore=73
  2.  
  3. all: HotKey Broker
  4.  
  5. HotKey: HotKey.c
  6.     sc link $(CFLAGS) HotKey.c
  7.  
  8. Broker: Broker.c
  9.     sc link $(CFLAGS) Broker.c
  10.  
  11. clean:
  12.     -delete \#?.(o|lnk)
  13.